首页    新闻    小组    威客    人才    下载    博客    代码贴    在线编程    论坛
代码贴奔跑的少年的代码贴C语言
#include <stdio.h>
void main()
{
int a,b,c,sum = 0;
scanf("%d %d %d",&a,&b,&c);
sum=a+b+c;
printf("%d\n",sum);  
}
阅读全部 | 2015年11月19日 13:19
#include <stdlib.h> 
 #include <stdio.h> 
 #include <time.h>
 int main( void ) 
 {
   
   int num;
   int n ;
   int times = 0;
   srand(time(NULL));
   num = rand()%100+1;
   for(times=1;times<=10;times++)
......................
阅读全部 | 2015年11月19日 13:04
1
奔跑的少年