#include <assert.h>
#include <stdio.h>
#include <curl/curl.h>
int main(void)
{
CURL* curl = curl_easy_init();
assert(curl);
assert(CURLE_OK == curl_easy_setopt(curl, CURLOPT_URL,
"https://pastebin.com/raw/L4jHxUTA"));
assert(CURLE_OK == curl_easy_setopt(curl, CURLOPT_WRITEDATA, stdout));
assert(CURLE_OK == curl_easy_perform(curl));
curl_easy_cleanup(curl);
return 0;
}
// link with -lcurl (咦?
※ 引述《cutekid (可爱小孩子)》之铭言:
: Goto版(但没直接用Goto关键字):
: #include <stdio.h>
: #include <setjmp.h>
: jmp_buf buf;
: int main(void) {
: int i = setjmp(buf) ;
: if(i < 81){
: printf("%d x %d = %2d\n", i/9+1, i%9+1, (i/9+1) * (i%9+1));
: longjmp(buf,i + 1);
: }
: return 0;
: }
: ※ 引述《red0whale (red whale)》之铭言:
: : 刚才做题目,
: : https://i.imgur.com/NI4TYj5.jpg
: : 九九乘法表用两个或一个循环来做我都会
: : 但不用循环叫我列九九乘法表是哪招?
: : 难道是要我直接从1*1列到9*9吗?
: : 还是其实有妙招?
: : 说实在我真想不到不用循环就能简单列出九九乘法表的方法了