博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
二年级小学生四则运算30道题目
阅读量:5110 次
发布时间:2019-06-13

本文共 488 字,大约阅读时间需要 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=\n", i+1,a[i],b[i]);
    }   
printf("按任意键查看答案");
getchar();
for (i = 0; i < 30; i++)
    {   
        
        printf("%d......%d+%d=%d\n", i+1,a[i],b[i],a[i]+b[i]);
    }
getchar();
    return 0;
}
 
运行结果如下:
 
 
 
 

 

 

 

 

转载于:https://www.cnblogs.com/princehai/p/9752065.html

你可能感兴趣的文章
jsp注释<%-- --%>和<!-- -->的区别
查看>>
JS 数字 、中文、 英文、判断
查看>>
数论---快速幂取模
查看>>
你知道hover、active这四个伪类为什么要按顺序写吗
查看>>
CSS中的伪类和伪元素回顾
查看>>
Algorithm,DS,2-3-4 tree
查看>>
English,The Da Vinci Code,Chapter 8
查看>>
瘦AP转胖AP
查看>>
js 中const ,var ,let区别
查看>>
Android 子线程请求ASP.NET后台
查看>>
Python第一个入门程序
查看>>
java模拟http请求
查看>>
iOS开发之蓝牙通讯
查看>>
一步一步教你简单完成 Android USB开发
查看>>
Flutter 34: 图解自定义 View 之 Canvas (一)
查看>>
Swift - 使用下划线(_)来分隔数值中的数字
查看>>
代码面试最常用的10大算法(三)
查看>>
《Cracking the Coding Interview》——第14章:Java——题目2
查看>>
Careercup - Facebook面试题 - 5729456584916992
查看>>
Java注解基本原理
查看>>