软件工程课后作业1:三十道四则运算题目

代码语言:

#include <stdio.h>
#include <string.h>
#include <stdlib.h>
#include <time.h>

int main(int argc, char **argv)
{
    int a[30],b[30]; 
    int i,c,d;
    
    srand((unsigned int)time(NULL));
    for (i = 0; i < 30; i++)
    {   
        a[i] = rand()%101; 
b[i] = rand()%101;
        printf("%d......%d+%d= ", i+1,a[i],b[i]);
    }   
printf("按任意键查看答案");
getchar();
for (i = 0; i < 30; i++)
    {   
        
        printf("%d......%d+%d=%d ", i+1,a[i],b[i],a[i]+b[i]);
    }

getchar();
    return 0;
}

原文地址:https://www.cnblogs.com/haodong9/p/9751959.html