最新回答 / 熱心市民范先生
你的問號沒有刪除#include <stdio.h>int main(){? ? int x = 10;? ? int y = 10;? ? //使用簡單賦值語句實現x乘以2。? ? x = x * 2;? ? //使用復合賦值語句實現y乘以2。? ? y *= 2;? ? printf("x=%d\n", x);? ? printf("y=%d\n", y);? ? return 0;}
2022-09-22