摘要:
1 # !/usr/bin/python3 2 # -*- coding: utf-8 -*- 3 4 """ 5 ZetCode PyQt5 tutorial 6 7 In this example, we receive data from 8 a QInputDialog dialog. 9 10 Aauthor: Jan Bodnar 11 Website:... 阅读全文
摘要:
1.4.1 while语句 1.4.1 节练习 练习 1.9:编写程序,使用while循环将50到100的整数相加 #include <iostream> int main() { int sum = 0, val = 50; //只要val的值小于等于100,while循环就会持续执行 while 阅读全文